home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / channels.js < prev    next >
Encoding:
JavaScript  |  2004-12-19  |  13.0 KB  |  454 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is ChatZilla.
  15.  *
  16.  * The Initial Developer of the Original Code is James Ross.
  17.  * Portions created by the Initial Developer are Copyright (C) 2004
  18.  * the Initial Developer. All Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   James Ross, <silver@warwickcompsoc.co.uk>
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  25.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. var client;
  38. var network;
  39. var channels = new Array();
  40. var createChannelItem;
  41.  
  42. var channelTreeShare = new Object();
  43. var channelTreeView;
  44.  
  45. const colIDToSortKey = { chanColName: "name",
  46.                          chanColUsers: "users",
  47.                          chanColTopic: "topic" };
  48. const sortKeyToColID = { name: "chanColName",
  49.                          users: "chanColUsers",
  50.                          topic: "chanColTopic" };
  51.  
  52. function onLoad()
  53. {
  54.     function ondblclick(event) { channelTreeView.onRouteDblClick(event); };
  55.     function onkeypress(event) { channelTreeView.onRouteKeyPress(event); };
  56.     function onfocus(event)    { channelTreeView.onRouteFocus(event); };
  57.     function onblur(event)     { channelTreeView.onRouteBlur(event); };
  58.  
  59.     function doJoin()
  60.     {
  61.         if (joinChannel())
  62.             window.close();
  63.     };
  64.  
  65.     client = window.arguments[0].client;
  66.  
  67.     window.toUnicode = client.mainWindow.toUnicode;
  68.     window.getMsg = client.mainWindow.getMsg;
  69.     window.MSG_CHANNEL_OPENED = client.mainWindow.MSG_CHANNEL_OPENED;
  70.     window.MT_INFO = client.mainWindow.MT_INFO;
  71.  
  72.     // Import "MSG_CD_*"...
  73.     for (var m in client.mainWindow)
  74.     {
  75.         if (m.substr(0, 7) == "MSG_CD_")
  76.             window[m] = client.mainWindow[m];
  77.     }
  78.  
  79.     network = client.mainWindow.getObjectDetails(client.currentObject).network;
  80.  
  81.     var tree = document.getElementById("channelList");
  82.  
  83.     channelTreeView = new XULTreeView(channelTreeShare);
  84.     channelTreeView.onRowCommand = doJoin;
  85.     channelTreeView.cycleHeader = changeSort;
  86.     tree.treeBoxObject.view = channelTreeView;
  87.  
  88.     // Sort by user count, decending.
  89.     changeSort("chanColUsers");
  90.  
  91.     tree.addEventListener("dblclick", ondblclick, false);
  92.     tree.addEventListener("keypress", onkeypress, false);
  93.     tree.addEventListener("focus", onfocus, false);
  94.     tree.addEventListener("blur", onblur, false);
  95.  
  96.     createChannelItem = new ChannelEntry("", "", MSG_CD_CREATE);
  97.     createChannelItem.first = true;
  98.     channelTreeView.childData.appendChild(createChannelItem);
  99.  
  100.     document.title = getMsg(MSG_CD_TITLE, [network.unicodeName,
  101.                                            network.getURL()]);
  102.  
  103.     setTimeout(startListRequest, 100, false);
  104. }
  105.  
  106. function onKeyPress(event)
  107. {
  108.     if (event.keyCode == event.DOM_VK_UP)
  109.     {
  110.         if (channelTreeView.selectedIndex > 0)
  111.             channelTreeView.selectedIndex = channelTreeView.selectedIndex - 1;
  112.         event.preventDefault();
  113.     }
  114.     else if (event.keyCode == event.DOM_VK_DOWN)
  115.     {
  116.         if (channelTreeView.selectedIndex < channelTreeView.rowCount - 1)
  117.             channelTreeView.selectedIndex = channelTreeView.selectedIndex + 1;
  118.         event.preventDefault();
  119.     }
  120. }
  121.  
  122. function onSelectionChange()
  123. {
  124.     var joinBtn = document.getElementById("joinBtn");
  125.     joinBtn.disabled = (channelTreeView.selectedIndex == -1);
  126. }
  127.  
  128. function runFilter()
  129. {
  130.     function process()
  131.     {
  132.         var exactMatch = null;
  133.         var channelText = text;
  134.         if (!channelText.match(/^[#&+!]/))
  135.             channelText = "#" + channelText;
  136.  
  137.         for (var i = 0; i < channels.length; i++)
  138.         {
  139.             var match = (channels[i].name.toLowerCase().indexOf(text) != -1) ||
  140.                         (searchTopics && 
  141.                          (channels[i].topic.toLowerCase().indexOf(text) != -1));
  142.  
  143.             if (minUsers && (channels[i].users < minUsers))
  144.                 match = false;
  145.             if (maxUsers && (channels[i].users > maxUsers))
  146.                 match = false;
  147.  
  148.             if (channels[i].isHidden)
  149.             {
  150.                 if (match)
  151.                     channels[i].unHide();
  152.             }
  153.             else
  154.             {
  155.                 if (!match)
  156.                     channels[i].hide();
  157.             }
  158.  
  159.             if (match && (channels[i].name.toLowerCase() == channelText))
  160.                 exactMatch = channels[i];
  161.  
  162.             if ((i % 100) == 0)
  163.                 updateProgress(MSG_CD_FILTERING, 100 * i / channels.length);
  164.         }
  165.         updateProgress();
  166.  
  167.         createChannelItem.name = channelText;
  168.         var tree = document.getElementById("channelList");
  169.         tree.treeBoxObject.invalidateRow(0);
  170.  
  171.         if (exactMatch)
  172.         {
  173.             if (!createChannelItem.isHidden)
  174.                 createChannelItem.hide();
  175.             channelTreeView.selectedIndex = exactMatch.calculateVisualRow();
  176.         }
  177.         else
  178.         {
  179.             if (createChannelItem.isHidden)
  180.                 createChannelItem.unHide();
  181.             if (channelTreeView.selectedIndex == -1)
  182.             {
  183.                 // The special 'create' row is visible, so prefer the first
  184.                 // real channel over it.
  185.                 if (channelTreeView.rowCount >= 2)
  186.                     channelTreeView.selectedIndex = 1;
  187.                 else if (channelTreeView.rowCount >= 1)
  188.                     channelTreeView.selectedIndex = 0;
  189.             }
  190.         }
  191.  
  192.     };
  193.  
  194.     var text = document.getElementById("filterText").value.toLowerCase();
  195.     var searchTopics = document.getElementById("searchTopics").checked;
  196.     var minUsers = document.getElementById("minUsers").value * 1;
  197.     var maxUsers = document.getElementById("maxUsers").value * 1;
  198.  
  199.     if (channels.length > 1000)
  200.         updateProgress(getMsg(MSG_CD_FILTERING1, channels.length));
  201.     else
  202.         updateProgress(getMsg(MSG_CD_FILTERING2, channels.length));
  203.  
  204.     setTimeout(process, 100);
  205. }
  206.  
  207. function joinChannel()
  208. {
  209.     var index = channelTreeView.selectedIndex;
  210.     if (index == -1)
  211.         return false;
  212.  
  213.     var row = channelTreeView.childData.locateChildByVisualRow(index);
  214.     network.dispatch("join", { channelName: row.name });
  215.  
  216.     return true;
  217. }
  218.  
  219. function focusSearch()
  220. {
  221.     document.getElementById("filterText").focus();
  222. }
  223.  
  224. function refreshList()
  225. {
  226.     startListRequest(true);
  227. }
  228.  
  229. function updateProgress(label, pro)
  230. {
  231.     if (label)
  232.     {
  233.         document.getElementById("loadLabel").value = label;
  234.     }
  235.     else
  236.     {
  237.         var msg = getMsg(MSG_CD_SHOWING,
  238.              [(channelTreeView.rowCount - (createChannelItem.isHidden ? 0 : 1)),
  239.               channels.length]);
  240.         document.getElementById("loadLabel").value = msg;
  241.     }
  242.  
  243.     var loadBarDeckIndex = ((typeof pro == "undefined") ? 1 : 0);
  244.     document.getElementById("loadBarDeck").selectedIndex = loadBarDeckIndex;
  245.  
  246.     if ((typeof pro == "undefined") || (pro == -1))
  247.     {
  248.         document.getElementById("loadBar").mode = "undetermined";
  249.     }
  250.     else
  251.     {
  252.         document.getElementById("loadBar").mode = "determined";
  253.         document.getElementById("loadBar").position = pro;
  254.     }
  255. }
  256.  
  257. function changeSort(col)
  258. {
  259.     if (typeof col == "object")
  260.         col = col.id;
  261.  
  262.     col = colIDToSortKey[col];
  263.     // Users default to decending, others accending.
  264.     var dir = (col == "users" ? -1 : 1);
  265.  
  266.     if (col == channelTreeShare.sortColumn)
  267.         dir = -channelTreeShare.sortDirection;
  268.  
  269.     var colID = sortKeyToColID[channelTreeShare.sortColumn];
  270.     var colNode = document.getElementById(colID);
  271.     if (colNode)
  272.     {
  273.         colNode.removeAttribute("sortActive");
  274.         colNode.removeAttribute("sortDirection");
  275.     }
  276.  
  277.     channelTreeView.childData.setSortColumn(col, dir);
  278.  
  279.     colID = sortKeyToColID[channelTreeShare.sortColumn];
  280.     colNode = document.getElementById(colID);
  281.     if (colNode)
  282.     {
  283.         colNode.setAttribute("sortActive", "true");
  284.         var sortDir = (dir > 0 ? "ascending" : "descending");
  285.         colNode.setAttribute("sortDirection", sortDir);
  286.     }
  287. }
  288.  
  289. function startListRequest(force)
  290. {
  291.     if (("_list" in network) && !network._list.done)
  292.     {
  293.         updateProgress(MSG_CD_WAIT_LIST);
  294.         setTimeout(startListRequest, 1000, force);
  295.         return;
  296.     }
  297.  
  298.     updateProgress(MSG_CD_FETCHING, -1);
  299.     document.getElementById("refreshNow").disabled = true;
  300.  
  301.     var file = new LocalFile(network.prefs["logFileName"]);
  302.     file.localFile.leafName = "list.txt";
  303.  
  304.     if (file.localFile.exists() && !force)
  305.     {
  306.         startListFileLoad();
  307.         return;
  308.     }
  309.  
  310.     network.list("", file.localFile.path);
  311.  
  312.     setTimeout(duringListRequest, 1000);
  313. }
  314.  
  315. function duringListRequest()
  316. {
  317.     var lbl = document.getElementById("loadLabel");
  318.     updateProgress(getMsg(MSG_CD_FETCHED, network._list.count), -1);
  319.  
  320.     if (!network._list.done)
  321.         setTimeout(duringListRequest, 1000);
  322.     else
  323.         afterListRequest();
  324. }
  325.  
  326. function afterListRequest()
  327. {
  328.     if ("error" in network._list)
  329.     {
  330.         updateProgress(MSG_CD_ERROR_LIST);
  331.         document.getElementById("refreshNow").disabled = false;
  332.         // Can't seem to "undefine" the parameters using the function format.
  333.         setTimeout("updateProgress()", 10000);
  334.     }
  335.     else
  336.     {
  337.         updateProgress();
  338.         startListFileLoad();
  339.     }
  340. }
  341.  
  342. var pendingData;
  343.  
  344. function startListFileLoad()
  345. {
  346.     // Nuke contents.
  347.     channelTreeView.selectedIndex = -1;
  348.     // Should ideally be calling freeze()/thaw() here, but unfortunately they
  349.     // mess up the selection, even if they make this so much faster.
  350.     while (channelTreeView.childData.childData.length > 1)
  351.         channelTreeView.childData.removeChildAtIndex(1);
  352.  
  353.     // Nuke more stuff.
  354.     channels = new Array();
  355.     pendingData = "";
  356.  
  357.     // And... here we go.
  358.     var file = new LocalFile(network.prefs["logFileName"]);
  359.     file.localFile.leafName = "list.txt";
  360.     file = new LocalFile(file.localFile, "<");
  361.  
  362.     duringListFileLoad(file);
  363. }
  364.  
  365. function duringListFileLoad(file)
  366. {
  367.     var data = file.read(10000);
  368.     pendingData += data;
  369.  
  370.     while (pendingData.indexOf("\n") != -1)
  371.     {
  372.         var lines = pendingData.split("\n");
  373.         pendingData = lines.pop();
  374.  
  375.         for (var i = 0; i < lines.length; i++)
  376.         {
  377.             var ary = lines[i].match(/^([^ ]+) ([^ ]+) (.*)$/);
  378.             if (ary)
  379.             {
  380.                 var chan = new ChannelEntry(toUnicode(ary[1], "UTF-8"), ary[2],
  381.                                             toUnicode(ary[3], "UTF-8"));
  382.                 channels.push(chan);
  383.             }
  384.         }
  385.     }
  386.     updateProgress(getMsg(MSG_CD_LOADED, channels.length), -1);
  387.  
  388.     if (file.inputStream.available() != 0)
  389.         setTimeout(duringListFileLoad, 100, file);
  390.     else
  391.         afterListFileLoad(file);
  392. }
  393.  
  394. function afterListFileLoad(file)
  395. {
  396.     document.getElementById("refreshNow").disabled = false;
  397.     if (channels.length > 0)
  398.         channelTreeView.childData.appendChildren(channels);
  399.     updateProgress();
  400.     runFilter();
  401. }
  402.  
  403. // Tree ChannelEntry objects //
  404. function ChannelEntry(name, users, topic)
  405. {
  406.     this.setColumnPropertyName("chanColName", "name");
  407.     this.setColumnPropertyName("chanColUsers", "users");
  408.     this.setColumnPropertyName("chanColTopic", "topic");
  409.  
  410.     // Nuke color codes and bold etc.
  411.     topic = topic.replace(/[\x1F\x02\x0F\x16]/g, "");
  412.     topic = topic.replace(/\x03\d{1,2}(?:,\d{1,2})?/g, "");
  413.  
  414.     this.name  = name;
  415.     this.users = users;
  416.     this.topic = topic;
  417. }
  418.  
  419. ChannelEntry.prototype = new XULTreeViewRecord(channelTreeShare);
  420.  
  421. ChannelEntry.prototype.sortCompare =
  422. function chanentry_sortcmp(a, b)
  423. {
  424.     var sc = a._share.sortColumn;
  425.     var sd = a._share.sortDirection;
  426.  
  427.     // Make sure the special 'first' row is always first.
  428.     if ("first" in a)
  429.         return -1;
  430.     if ("first" in b)
  431.         return 1;
  432.  
  433.     if (sc == "users")
  434.     {
  435.         // Force a numeric comparison.
  436.         a = 1 * a[sc];
  437.         b = 1 * b[sc];
  438.     }
  439.     else
  440.     {
  441.         // Case-insensitive, please.
  442.         a = a[sc].toLowerCase();
  443.         b = b[sc].toLowerCase();
  444.     }
  445.  
  446.     if (a < b)
  447.         return -1 * sd;
  448.  
  449.     if (a > b)
  450.         return 1 * sd;
  451.  
  452.     return 0;
  453. }
  454.